home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / shapebut / sbdemo.dpr next >
Text File  |  1996-09-15  |  163b  |  13 lines

  1. program Sbdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Sbdemo1 in 'SBDEMO1.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.